home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 248_01 / main.c < prev    next >
Text File  |  1989-08-16  |  7KB  |  359 lines

  1. /*    MAIN:    Main module for MicroSPELL 1.0
  2.         Spell Checker and Corrector
  3.  
  4.         (C)opyright May 1987 by Daniel Lawrence
  5.         All Rights Reserved
  6.  
  7.     Revision History:
  8.  
  9.     21-jul-87
  10.         [Released version 1.0 to the USENET]
  11. */
  12.  
  13. #define    maindef    1
  14.  
  15. #include    <stdio.h>
  16. #include    "dopt.h"
  17. #include    "dstruct.h"
  18. #include    "ddef.h"
  19.  
  20. main(argc, argv)
  21.  
  22. int argc;    /* command line argument count */
  23. char **argv;    /*              argument vector */
  24.  
  25. {
  26.     WORD *tword;
  27.  
  28.     /* check to see if they need help.... */
  29.     if (argc == 1) {
  30.         usage();
  31.         exit(EXBADOPT);
  32.     }
  33.  
  34.     /* announce us */
  35.     printf("MicroSPELL %s    Interactive Speller and Corrector\n", VERSION);
  36.  
  37.     /* load the common word list */
  38.     loadcom();
  39.  
  40.     /* parse the command line */
  41.     while (--argc) {
  42.         argv++;        /* skip to next argument */
  43.         if (argv[0][0] == '-')
  44.             option(&argc, &argv);
  45.         else
  46.             sfile(argv[0]);
  47.     }
  48.  
  49.     /* prepare to spell */
  50.     comsort();
  51.     if (swdebug && (numfiltr > numcom))
  52.         printf("[%u User words loaded and sorted]\n", numfiltr - numcom);
  53.  
  54.     if (mopen() == FALSE)
  55.         exit(EXMDICT);
  56.     mclose();
  57.     if ((outfile = fopen("spell.lst", "w")) == NULL) {
  58.         printf("%%Can not open temp file\n");
  59.         exit(EXTEMP);
  60.     }
  61.  
  62.     /* read the words in */
  63.     tword = getword();
  64.     while (tword) {
  65.         ++totwords;
  66.         if (!iscom(tword->w_text)) {
  67.             ++prowords;
  68.             insword(tword);
  69.         }
  70.         tword = getword();
  71.     }
  72.  
  73.     /* if there are words left to spell check... go do it */
  74.     if (numwords > 0)
  75.         check();
  76.     if (swwords)
  77.         fprintf(outfile, "!end\n");
  78.     else
  79.         fprintf(outfile, "-2\n0\n");
  80.     fclose(outfile);
  81.  
  82.     printf("[%u/%u words processed]\n", prowords, totwords);
  83.  
  84.     if (swemacs) {
  85.         perform("emacs @scan.cmd");
  86. #if    ATARI & LATTICE
  87.         printf("%%Cannot execute EMACS from here...type\m");
  88.         printf("     emacs @scan.cmd\nto scan document\n");
  89. #endif
  90.     }
  91.  
  92.     exit(EXGOOD);
  93. }
  94.  
  95. insword(cword)    /* insert a word in the source word list */
  96.  
  97. WORD *cword;
  98.  
  99. {
  100.     register WORD *wp;    /* temporary word pointer */
  101.  
  102.     if (numwords == MAXWORDS)
  103.         check();
  104.  
  105.     /* malloc room for the word */
  106.     wp = NULL;
  107.     while (wp == NULL && numwords >= 0) {
  108.         wp = (WORD *)malloc(sizeof(WORD) + strlen(cword->w_text) + 1);
  109.         if (wp == NULL)
  110.             check();
  111.     }
  112.  
  113.     if (wp == NULL) {
  114.         printf("%%Out of Memory while scanning input file\n");
  115.         exit(EXNORAM);
  116.     }
  117.  
  118.     /* copy the word in */
  119.     wp->w_file = cword->w_file;
  120.     wp->w_line = cword->w_line;
  121.     wp->w_col = cword->w_col;
  122.     strcpy(wp->w_text, cword->w_text);
  123.  
  124.     /* and hook it in */
  125.     sword[numwords++] = wp;
  126. }
  127.  
  128. option(argc, argv)    /* process a command line option */
  129.  
  130. int *argc;        /* ptr to cmd line argc */
  131. char ***argv;        /* paramters */
  132.  
  133. {
  134.     register char ochar;    /* option character */
  135.  
  136.     ochar = (*argv)[0][1];
  137.     switch (ochar) {
  138.         case 'd':    /* debug switched on */
  139.             swdebug = TRUE;
  140.             break;
  141.  
  142.         case 'e':    /* emacs to be used to correct */
  143.             swemacs = TRUE;
  144.             break;
  145.  
  146.         case 'u':    /* specify user dictionary */
  147.             if ((*argv)[0][2])
  148.                 uread(&(*argv)[0][2]);
  149.             else {
  150.                 if (*argc > 0)
  151.                     uread((*argv)[1]);
  152.                     (*argv)++;
  153.                     (*argc)--;
  154.                 }
  155.             break;
  156.  
  157.         case 'w':    /* output a word lsit instead of locations */
  158.             swwords = TRUE;
  159.             break;
  160.  
  161.         default:    /* bad option */
  162.             printf("%%No such option '%s'\n", &(*argv)[0][1]);
  163.             exit(EXBADOPT);
  164.     }
  165. }
  166.  
  167. sfile(fname)    /* record and check the file to be spelled */
  168.  
  169. char *fname;    /* file to spell */
  170.  
  171. {
  172.     if (swdebug)
  173.         printf("[Queueing '%s' to spell]\n", fname);
  174.  
  175.     /* check to see if we have too many */
  176.     if (numspell >= MAXSPELL) {
  177.         printf("%%Too many input files... '%s' ignored\n", fname);
  178.         return(FALSE);
  179.     } else {
  180.         strcpy(splname[numspell++], fname);
  181.         return(TRUE);
  182.     }
  183. }
  184.  
  185. usage()        /* print the command line usage */
  186.  
  187. {
  188.     printf("MicroSPELL %s    Interactive Speller and Corrector\n", VERSION);
  189.     puts("\nUsage\n");
  190.     puts("    spell {<options>} <file> {<file>.....<file>}\n");
  191.     puts("Options:\n");
  192.     puts("    -d        Debugging mode");
  193.     puts("    -e        Use MicroEMACS to scan errors");
  194.     puts("    -u<fname>    Use user word list <fname>");
  195.     puts("    -w        Output a word list instead of location list");
  196. }
  197.  
  198. #if    RAMSIZE & LATTICE & MSDOS
  199. /*    These routines will allow me to track memory usage by placing
  200.     a layer on top of the standard system malloc() and free() calls.
  201.     with this code defined, the number of allocated bytes is displayed
  202.     in the upper right corner of the screen
  203. */
  204.  
  205. #undef    malloc
  206. #undef    free
  207.  
  208. char *allocate(nbytes)    /* allocate nbytes and track */
  209.  
  210. unsigned nbytes;    /* # of bytes to allocate */
  211.  
  212. {
  213.     char *mp;    /* ptr returned from malloc */
  214.     char *malloc();
  215.  
  216.     mp = malloc(nbytes);
  217.     if (mp) {
  218.         envram += nbytes;
  219. #if    RAMSHOW
  220.         dspram();
  221. #endif
  222.     }
  223.  
  224.     return(mp);
  225. }
  226.  
  227. release(mp)    /* release malloced memory and track */
  228.  
  229. char *mp;    /* chunk of RAM to release */
  230.  
  231. {
  232.     unsigned *lp;    /* ptr to the long containing the block size */
  233.  
  234.     if (mp) {
  235.         lp = ((unsigned *)mp) - 1;
  236.  
  237.         /* update amount of ram currently malloced */
  238.         envram -= (long)*lp - 2;
  239.         free(mp);
  240. #if    RAMSHOW
  241.         dspram();
  242. #endif
  243.     }
  244. }
  245.  
  246. #if    RAMSHOW
  247. dspram()    /* display the amount of RAM currently malloced */
  248.  
  249. {
  250.     char mbuf[20];
  251.     char *sp;
  252.  
  253. /*    TTmove(term.t_nrow - 1, 70);*/
  254.     sprintf(mbuf, "[%lu]", envram);
  255.     sp = &mbuf[0];
  256.     puts(sp);
  257. }
  258. #endif
  259. #endif
  260.  
  261. #if    AZTEC & MSDOS
  262. #undef    fgetc
  263. #undef    fgets
  264. /*    a1gets:        Get an ascii string from a file using a1getc    */
  265.  
  266. char *a1gets(buffer, length, fp)
  267.  
  268. char *buffer;    /* buffer to leave string in */
  269. int length;    /* maximum length of string */
  270. FILE *fp;    /* file to get string from */
  271.  
  272. {
  273.     register int c;        /* current character read */
  274.     register char *bp;    /* pointer into buffer */
  275.  
  276.     bp = buffer;
  277.  
  278.     while ((c = a1getc(fp))    != EOF) {
  279.         *bp++ = (char)c;
  280.         if (c == '\n')
  281.             break;
  282.     }
  283.  
  284.     *bp = 0;
  285.     if (c == EOF)
  286.         return(NULL);
  287.     else
  288.         return(buffer);
  289. }
  290.  
  291. /*    a1getc:        Get an ascii char from the file input stream
  292.             but DO NOT strip the high bit
  293. */
  294.  
  295. int a1getc(fp)
  296.  
  297. FILE *fp;
  298.  
  299. {
  300.     int c;        /* translated character */
  301.  
  302.     c = getc(fp);    /* get the character */
  303.  
  304.     /* if its a <LF> char, throw it out  */
  305.     while (c == 10)
  306.         c = getc(fp);
  307.  
  308.     /* if its a <RETURN> char, change it to a LF */
  309.     if (c == '\r')
  310.         c = '\n';
  311.  
  312.     /* if its a ^Z, its an EOF */
  313.     if (c == 26)
  314.         c = EOF;
  315.  
  316.     return(c);
  317. }
  318. #endif
  319.  
  320. perform(cmd)    /* send out a DOS command and execute it */
  321.  
  322. char *cmd;    /* command to execute */
  323.  
  324. {
  325.     if (swdebug)    /* output command string with diagnostics */
  326.         puts(cmd);
  327.  
  328. #if    LATTICE & ~ATARI & ~CMS
  329.     forkl(getenv("COMSPEC"),"command","-C",cmd,NULL);
  330.     return(wait());
  331. #endif
  332.  
  333. #if    (AZTEC & ~AMIGA) | CMS
  334.     system(cmd);
  335.     return(TRUE);
  336. #endif
  337.  
  338. #if    AZTEC & AMIGA
  339.     Execute(cmd, 0L, 0L);
  340.     return(TRUE);
  341. #endif
  342. }
  343.  
  344. #if    CMS
  345. #undef    fopen
  346. /*    The IBM 30xx likes to tell us when file opens
  347.     fail...it's too chatty....I like to handle these myself    */
  348.  
  349. FILE *cmsopen(file, mode)
  350.  
  351. char *file;    /* name of file to open */
  352. char *mode;    /* mode to open it in */
  353.  
  354. {
  355.     quiet(1);
  356.     return(fopen(file,mode));
  357. }
  358. #endif
  359.